home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_400 / 422_02 / misc / hello.c < prev    next >
C/C++ Source or Header  |  1994-03-20  |  163b  |  12 lines

  1. /*
  2.  * Standard 'C' demo... Say hello to the world
  3.  *
  4.  * Compile command: cc hello
  5.  */
  6. #include \mc\stdio.h
  7.  
  8. main()
  9. {
  10.     fputs("Hello world\n", stdout);
  11. }
  12.